how to add padding flutter

209

flutter padding -

const Card(
  child: Padding(
    padding: EdgeInsets.all(16.0),
    child: Text('Hello World!'),
  ),
)

Comments

Submit
0 Comments